local timer = 1 local X = 0 local Y = 10 local Z = 0 local RX = 180 local RY = 180 local RZ = 180 S = Instance.new("Sound",owner.Character.HumanoidRootPart) owner.Character.HumanoidRootPart.Anchored = true S.Volume = 1 S.SoundId = "rbxassetid://9126226833" S.Pitch = 2 S:Play() game:GetService("TweenService"):Create(owner.Character["HumanoidRootPart"],TweenInfo.new(timer,Enum.EasingStyle.Circular,Enum.EasingDirection.Out),{Position = Vector3.new(X,Y,Z)}):Play() game:GetService("TweenService"):Create(owner.Character["HumanoidRootPart"],TweenInfo.new(timer,Enum.EasingStyle.Circular,Enum.EasingDirection.Out),{Rotation = Vector3.new(RX,RY,RZ)}):Play() wait(timer) owner.Character.HumanoidRootPart.Anchored = false wait(5) S:Destroy()